.czbanner {
    margin-top: 72px;
    height: 412px;
    background: url("/static2/images2/vip-banner.jpg") no-repeat center;
}

.czmant {
    margin: -100px auto 0;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}

.czmant .item {
    width: 376px;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);
    background: #fff;
    padding: 0 40px 20px;
    margin-bottom: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.czmant .item:nth-child(1) {
    background: url(/static2/images2/vip-bg1.png) no-repeat;
}

.czmant .item:nth-child(2) {
    background: url(/static2/images2/vip-bg2.png) no-repeat;
}

.czmant .item:nth-child(3) {
    background: url(/static2/images2/vip-bg3.png) no-repeat;
}

.czmant .item .titles {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-top: 30px;
}

.czmant .item .titles::before {
    content: '';
    width: 40px;
    height: 30px;
    display: inline-block;
    background: no-repeat center;
    margin-right: 10px;
}

.czmant .item:nth-child(1) .titles:before {
    background-image: url(/static2/images2/vip-icon1.png);
}

.czmant .item:nth-child(2) .titles:before {
    background-image: url(/static2/images2/vip-icon2.png);
}

.czmant .item:nth-child(3) .titles:before {
    background-image: url(/static2/images2/vip-icon3.png);
}

.czmant .item .price {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}

.czmant .item .price .number {
    font-size: 45px;
    font-weight: bold;
}

.czmant .item .btn {
    display: block;
    line-height: 46px;
    font-size: 18px;
    text-align: center;
    user-select: none;
    cursor: pointer;
    border-radius: 3px;
    transition: .3s;
    margin-top: 35px;
}

.czmant .item .btn:hover {
    opacity: .8;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .05);
}

.czmant .item:nth-child(1) .titles,
.czmant .item:nth-child(1) .price,
.czmant .item:nth-child(1) .btn {
    color: #2e434c;
}

.czmant .item:nth-child(2) .titles,
.czmant .item:nth-child(2) .price,
.czmant .item:nth-child(2) .btn {
    color: #8f6631;
}

.czmant .item:nth-child(3) .titles,
.czmant .item:nth-child(3) .price,
.czmant .item:nth-child(3) .btn {
    color: #ffcebf;
}

.czmant .item:nth-child(1) .btn {
    background-color: #e5eaec;
}

.czmant .item:nth-child(2) .btn {
    background-color: #f6ebda;
}

.czmant .item:nth-child(3) .btn {
    background-color: #3a5477;
}

/* 弹窗 */
.vip-pop {
    display: flex;
}
.vip-pop .side{
    width: 180px;
    background-color: #f3f4f9;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.vip-pop .side .avatar{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: url(/static2/images2/avatar.png);
    margin-top: 30px;
}
.vip-pop .side .id{
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}
.vip-pop .side .level{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}
.vip-pop .side .time{
    font-size: 12px;
    margin-top: 10px;
    color: #999;
}
.vip-pop .main{
    flex-grow: 1;
    padding: 25px 20px 20px;
}
.vip-pop .main .group{
    display: flex;
    justify-content: space-between;
}
.vip-pop .main .group .item{
    width: 190px;
    padding: 20px 20px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    user-select: none;
    text-align: center;
    font-size: 13px;
}
.vip-pop .main .group .item.active{
    border-color: #3e9cfd;
}
.vip-pop .main .group .item.active::after{
    content: '';
    width: 30px;
    height: 28px;
    display: inline-block;
    background: url(/static2/images2/vip_select.png);
    border-radius: 0 0 4px 0;
    position: absolute;
    right: 0;
    bottom: 0;
}
.vip-pop .main .group .item .titles{
    font-size: 22px;
    color: #333;
    font-weight: bold;
}
.vip-pop .main .group .item .price{
    color: #333;
}
.vip-pop .main .group .item .price .number{
    color: #ff4800;
    font-size: 34px;
    font-weight: bold;
}
.vip-pop .main .group .item .btn,
.vip-pop .main .group .item .intro li:not(.show){
    display: none !important;
}
.vip-pop .main .con {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
}
.vip-pop .main .con .pay{
    width: 142px;
    margin-right: 30px;
}
.vip-pop .main .con .pay .qr{
    width: 142px;
    height: 142px;
    border: 1px solid #ddd;
    padding: 8px;
    background: url(/static2/images2/loading.gif) no-repeat center;
}
.vip-pop .main .con .pay .qr img{
    width: 100%;
}
.vip-pop .main .con .pay .title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666;
    padding-top: 10px;
}
.vip-pop .main .con .pay .title::before{
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    background: no-repeat center;
    background-size: 100% auto;
}
.vip-pop .main .con .pay.wechat .title::before{
    background-image: url(/static2/images2/icon-wechat.png);
}
.vip-pop .main .con .pay.zfb .title::before{
    background-image: url(/static2/images2/icon-zfb.png);
}
.vip-pop .main .con .info .price{
    font-size: 16px;
    color: #ff4800;
}
.vip-pop .main .con .info .price .label{
    color: #333;
}
.vip-pop .main .con .info .price .number{
    font-size: 32px;
    font-weight: bold;
}
.vip-pop .main .con .info .desc{
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: #666;
}
.vip-pop .main .con .info .desc img{
    margin-right: 10px;
}
.vip-pop .main .con .info .agreement{
    margin-top: 15px;
    color: #333;
    font-size: 13px;
}



/* 会员权益 */
.intro li{
    display: flex  !important;
    align-items: center;
    justify-content: space-between;
    color: #333;

}
.intro li>*:last-child {
    margin-left: auto;
    color: #666;
}
.intro .help {
    width: 20px;
    height: 15px;
    display: inline-block;
    background: url(/static2/images2/help-icon.png) no-repeat right center;
    cursor: pointer;
}

.czmant .item .intro {
    margin-top: 45px;
}

.czmant .item .intro li {    
    line-height: 34px;
    font-size: 14px;
    color: #666;
}

.vip-pop .intro{
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #ececec;
}
.vip-pop .intro li{
    line-height: 32px;
}
.vip-pop .side .intro{
    margin-top: 20px;
}
.vip-pop .side .intro li{
    font-size: 12px;
}
.vip-pop .main .intro{
    margin-top: 10px;
}
.vip-pop .main .intro li {
    justify-content: center;
}
.vip-pop .main .intro li>*:last-child {
    margin-left: inherit;
}
.vip-pop .main .intro li>*:last-child::before {
    content: '：';
}
.vip-pop .main .intro li .help {
    display: none;
}
